home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////
- // CalendarRadio
- // by Charles Lloyd
- ////////////////////////
-
- DayFontSize: WOGenericContainer {
- elementName = "font";
- size = dayFontSize;
- };
-
- MonthFontSize: WOGenericContainer {
- elementName = "font";
- size = monthFontSize;
- };
-
- YearFontSize: WOGenericContainer {
- elementName = "font";
- size = yearFontSize;
- };
-
- MonthString: WOString {
- value = currentMonthDescr;
- };
-
- YearString: WOString {
- value = currentYear;
- };
-
- WeekRepetition: WORepetition {
- count = 6;
- index = rowIndex;
- };
-
- DayRepetition: WORepetition {
- count = 7;
- index = columnIndex;
- };
-
- DayString: WOString {
- value = currentDay;
- };
-
- DayRadio: WORadioButton {
- name = "DayChoice";
- value = currentDay;
- selection = dayChoice;
- };
-
- DayConditional: WOConditional {
- condition = doDay;
- };
-
- ButtonConditional: WOConditional {
- condition = showButtons;
- };
-
- CalendarTable: WOGenericContainer {
- elementName = "table";
- border = borderSize;
- cellpadding = cellPadding;
- cellspacing = cellSpacing;
- };
-
- CalendarHeading: WOGenericContainer {
- elementName = "th";
- colspan = 7;
- };
-
- DayCell: WOGenericContainer {
- elementName = "td";
- align = cellAlignment;
- };
-
-